home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-01
/
snpd1292.zip
/
XTEST.C
< prev
Wrap
C/C++ Source or Header
|
1992-12-26
|
821b
|
36 lines
#include <stdio.h>
#include "xfile.h"
int main(int argc, char **argv)
{
while (*++argv != 0)
{
XFILE *f = xopen(*argv);
if (f == 0)
fprintf(stderr, "ERROR: can't open file %s\n", *argv);
else
{
#if 0
char *s;
fprintf(stdout, "--- %s ---\n", *argv);
while ((s = xgetline(f)) != 0)
fputs(s, stdout);
xclose(f);
#else
unsigned int nLines = 0;
char *s;
while ((s = xgetline(f)) != 0)
++nLines;
printf("%5u lines in %s\n", nLines, *argv);
xclose(f);
#endif
}
}
return 0;
}